home *** CD-ROM | disk | FTP | other *** search
-
- #include <exec/types.h>
- #include <exec/tasks.h>
- #include <exec/nodes.h>
- #include <intuition/intuition.h>
- #include <intuition/screens.h>
-
-
- struct KeyBase
- {
- ULONG pad[20];
- int dither_type;
- };
-
- struct UserInfo
- {
- int number;
- char *name;
- char *street;
- char *city;
- char *country;
- int sum;
- };
-
- struct R3DHandle
- {
- struct Node h_node;
- struct Screen *RenderScr;
- struct Window *wnd;
- UBYTE depth;
- UWORD size_x, size_y;
- struct Task *task;
- SHORT *line;
- int line_width;
- };
-
-
- /* dithering types for SetDitherType() */
-
- #define DT_FS 0
- #define DT_ORDERED 1
- #define DT_NONE 2
-
-